home *** CD-ROM | disk | FTP | other *** search
/ Windows Expert / Windows Expert.iso / windownt / winner.zip / WINNER.BAT < prev    next >
DOS Batch File  |  1992-10-27  |  313b  |  22 lines

  1.  
  2. if %1 == c goto CLEAN
  3. if %1 == b goto BUILD
  4. if %1 == a goto BUILDALL
  5. cl386 -c %1 >buildres.ult 2>&1
  6. goto end
  7. :CLEAN
  8. del *.obj
  9. del *.rbj
  10. del *.res
  11. del *.ult
  12. goto end2
  13. :BUILD
  14. nmake>buildres.ult 2>&1
  15. goto end
  16. :BUILDALL
  17. nmake -a>buildres.ult 2>&1
  18. goto end
  19. :END
  20. winner.exe buildres.ult
  21. :END2
  22. exit